This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
Since you don't want to use XPages, you could just us jQuery.
If you use $.get() or $.ajax(), you can submit data to a server side agent. It is easy to then use .show() to display a wait message or an animated spinner while the ajax call is made, and in the callback function, which is executed after the call is done, you use .hide() to hide the spinner.
Something similar to this:
$.ajax({
url: 'database.nsf/SubmitAgent?OpenAgent',
cache: false
}).done(function(data) {
$('#waitMessage').hide();
});
$('#waitMessage').show();
Feedback response number WEBB9BUV9N created by ~Dan Kikiterobu on 09/24/2013